-
-
Notifications
You must be signed in to change notification settings - Fork 30.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
gh-103092: Isolate socket #103094
gh-103092: Isolate socket #103094
Conversation
erlend-aasland
commented
Mar 28, 2023
•
edited
Loading
edited
- Issue: Isolate Stdlib Extension Modules #103092
🤖 New build scheduled with the buildbot fleet by @erlend-aasland for commit b4edf64 🤖 If you want to schedule another build, you need to add the 🔨 test-with-refleak-buildbots label again. |
There's some leaks that needs to be adressed: $ ./python.exe measure.py
before=46451, after=47809
before=47811, after=48549
before=48549, after=49287
before=49287, after=50025
before=50025, after=50763 measure.pyimport gc
import sys
for _ in range(5):
gc.collect()
before = sys.gettotalrefcount()
import _socket
del sys.modules["_socket"]
del _socket
gc.collect()
after = sys.gettotalrefcount()
print(f"{before=}, {after=}")
# assert after == before ... and these two: $ ./python.exe -m test -R : test_socket -m RecvmsgIntoSCMRightsStreamTest Raised RLIMIT_NOFILE: 256 -> 1024
0:00:00 load avg: 1.96 Run tests sequentially
0:00:00 load avg: 1.96 [1/1] test_socket
beginning 9 repetitions
123456789
.........
test_socket leaked [10, 10, 10, 10] file descriptors, sum=40
test_socket failed (reference leak)
== Tests result: FAILURE ==
1 test failed:
test_socket
Total duration: 1.8 sec
Tests result: FAILURE
$ ./python.exe -m test -R : test_socket -m RecvmsgSCMRightsStreamTest Raised RLIMIT_NOFILE: 256 -> 1024
0:00:00 load avg: 2.52 Run tests sequentially
0:00:00 load avg: 2.52 [1/1] test_socket
beginning 9 repetitions
123456789
.........
test_socket leaked [10, 10, 10, 10] file descriptors, sum=40
test_socket failed (reference leak)
== Tests result: FAILURE ==
1 test failed:
test_socket
Total duration: 1.8 sec
Tests result: FAILURE |
Regarding #103094 (comment): the file descriptors leak on |
Seems like the leaks are due to the capsulated C API not being freed. |
I'd like to hold this PR until #103261 has landed. |
🤖 New build scheduled with the buildbot fleet by @erlend-aasland for commit 2019a93 🤖 If you want to schedule another build, you need to add the 🔨 test-with-refleak-buildbots label again. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM